home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Win2K UDMA66.xpl < prev    next >
Text File  |  2002-02-28  |  1KB  |  45 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\Hard Disk"
  5. "NAME"="Windows 2K/XP UDMA"
  6. "VERSION"="1.12"
  7. "OSVERSION"="0001011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Enable UDMA/66"
  10. "DESCRIPTION 1"="With DMA enabled on IDE channels, UDMA/66 is still disabled by default in Windows 2000, possibly also in Windows XP."
  11. "DESCRIPTION 2"="Check box to Enable UDMA/66."
  12. "DESCRIPTION 3"="For a detailed description, see http://www.xteq.com/support/dc/49.html"
  13. "WARNING"="1"
  14. "AUTHOR"="Ojatex@aol.com"
  15. "CONTACTURL"="http://members.aol.com/ojatex/"
  16. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  17. "COMMENT 1"="This is useful for both Intel and AMD chips, possibly others as well."
  18. "COMMENT 2"="Updated by CptSiskoX for Windows XP."
  19.  
  20.  
  21. sP="HKLM\System\CurrentControlSet\Control\Class\{4D36E96A-E325-11CE-BFC1-08002BE10318}\0000\EnableUDMA66"
  22.  
  23. Sub Plugin_Initialize 
  24.     i=RegReadValue(sP)
  25.     if i=1 then SetUIElement 1,true
  26. End Sub
  27.  
  28. Sub Plugin_CheckData(ElementIndex)
  29. End Sub
  30.  
  31. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  32.  b=GetUIElement(1)
  33.  if b=true then
  34.     Call RegWriteValue(sP,1,2)
  35.  else  
  36.     Call RegWriteValue(sP,0,2)
  37.  end if
  38.  
  39.  Call Restart()
  40. End Sub
  41.  
  42. Sub Plugin_Terminate 
  43. End Sub
  44.  
  45.